Package edu.uky.ai.ml.nn
Class Example
java.lang.Object
edu.uky.ai.ml.nn.Example
public class Example
extends java.lang.Object
An example is an individual data point that is part of a larger database.
- Author:
- Stephen G. Ware
-
Field Summary
-
Constructor Summary
Constructors Constructor Description Example(double[] input, double[] output, java.lang.String label)Constructs a new training example. -
Method Summary
-
Field Details
-
Constructor Details
-
Example
public Example(double[] input, double[] output, java.lang.String label)Constructs a new training example.- Parameters:
input- the input given to the neural networkoutput- the output the network should givelabel- a class label associated with the output
-